home *** CD-ROM | disk | FTP | other *** search
/ MPEG Toolkit / MPEG Toolkit.iso / dos / mpegstat / makefile.ori < prev    next >
Encoding:
Makefile  |  1997-01-01  |  665 b   |  31 lines

  1. # Makefile for building mpegstat
  2. #
  3.  
  4. CC            = gcc
  5.  
  6. #INCLUDEDIR    = -I/usr/openwin/include/X11
  7.  
  8. CFLAGS          =  -O3 -DNDEBUG -DBSD -DNONANSI_INCLUDES $(INCLUDEDIR)
  9.  
  10. #LIBS          = /usr/openwin/lib/libX11.a
  11.  
  12. HDRS          = util.h video.h decoders.h fs2.h dither.h fs4.h
  13.  
  14. LD          = $(CC)
  15.  
  16. OBJS          = util.o main.o decoders.o video.o jrevdct.o parseblock.o \
  17.         motionvector.o filter.o
  18.  
  19. PROGRAM       = mpegstat
  20.  
  21. SRCS          = util.c main.c decoders.c video.c jrevdct.c parseblock.c \
  22.         motionvector.c filter.c
  23.  
  24. all:        $(PROGRAM)
  25.  
  26. $(PROGRAM):    $(OBJS)
  27.         $(LD) $(OBJS) $(LIBS) -lm -o $(PROGRAM)
  28.  
  29. clean:;        @rm -f *.o core $(PROGRAM)
  30.  
  31.